Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
@slack/client
Advanced tools
Slack Developer Kit - official clients for the Web API, RTM API, and Incoming Webhooks
Visit the full documentation for all the lovely details.
So you want to build a Slack app with Node.js? We've got you covered. This package is aimed at making building Slack apps ridiculously easy. It helps you build on all aspects of the Slack platform, from dropping notifications in channels to fully interactive bots.
Use npm to install the package and save it to your package.json
:
$ npm install @slack/client
The Slack platform offers several APIs to build apps. Each API delivers part of the capabilities from the platform, with a range of complexity and functionality, so that you can pick the one that fits for your app.
Slack API | Outgoing | Incoming | NPM Package | Documentation |
---|---|---|---|---|
Web API | ⬆️ | ⬜️ | @slack/client | Guide |
RTM API | ⬆️ | ⬇️ | @slack/client | Guide |
Incoming Webhooks | ⬆️ | ⬜️ | @slack/client | Guide |
Events API | ⬜️ | ⬇️ | @slack/events-api | README |
Interactive Messages | ⬜️ | ⬇️ | @slack/interactive-messages | README |
Just starting out? The Getting Started guide will walk you through building your first Slack app using Node.js.
Not sure about which APIs are right for your app? Read our helpful blog post that explains and compares the options. If you're still not sure, reach out for help and our community can guide you.
Your app will interact with the Web API through the WebClient
object, which a top level export from this package. You
need to instantiate it with a token. The example below shows how to post a message into a channel, DM, MPDM, or group.
This will require either the bot
, chat:user:write
or chat:bot:write
scopes.
const { WebClient } = require('@slack/client');
// An access token (from your Slack app or custom integration - xoxp, xoxb)
const token = process.env.SLACK_TOKEN;
const web = new WebClient(token);
// This argument can be a channel ID, a DM ID, a MPDM ID, or a group ID
const conversationId = 'C1232456';
(async () => {
// See: https://api.slack.com/methods/chat.postMessage
const res = await web.chat.postMessage({ channel: conversationId, text: 'Hello there' });
// `res` contains information about the posted message
console.log('Message sent: ', res.ts);
})();
The WebClient
object makes it simple to call any of the over 130 Web API methods.
See the guide for details.
Your app will interact with the RTM API through the RTMClient
object, which is another top level export from this
package. You need to instantiate it with a token, usually a bot token.
const { RTMClient } = require('@slack/client');
// An access token (from your Slack app or custom integration - usually xoxb)
const token = process.env.SLACK_TOKEN;
// The client is initialized and then started to get an active connection to the platform
const rtm = new RTMClient(token);
rtm.start();
// Calling `rtm.on(eventName, eventHandler)` allows you to handle events
// When the connection is active, the 'ready' event will be triggered
rtm.on('ready', async () => {
// Once the connection is open, your app will start receiving other events. It can also send messages.
// Sending a message requires a channel ID, a DM ID, an MPDM ID, or a group ID
// The following value is used as an example
const conversationId = 'C1232456';
// The RTM client can send simple string messages
const res = await rtm.sendMessage('Hello there', conversationId);
// `res` contains information about the sent message
console.log('Message sent: ', res.ts);
});
See the guide for more details.
Incoming webhooks are an easy way to send notifications
to a Slack channel with a minimum of setup. You'll need a webhook URL from a Slack app or a custom
integration to use the IncomingWebhook
class.
const { IncomingWebhook } = require('@slack/client');
const url = process.env.SLACK_WEBHOOK_URL;
const webhook = new IncomingWebhook(url);
// Send simple text to the webhook channel
webhook.send('Hello there', function(err, res) {
if (err) {
console.log('Error:', err);
} else {
console.log('Message sent: ', res);
}
});
This package supports Node v6 LTS and higher. It's highly recommended to use the latest LTS version of node, and the documentation is written using syntax and features from that version.
If you get stuck, we're here to help. The following are the best ways to get assistance working through your issue:
developers@slack.com
FAQs
Legacy wrapper for official Slack Platform's Web API, RTM API, and Incoming Webhook libraries. Use @slack/web-api, @slack/rtm-api, or @slack/webhook instead.
The npm package @slack/client receives a total of 58,955 weekly downloads. As such, @slack/client popularity was classified as popular.
We found that @slack/client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.